home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Database
/
RandomTableView
/
RandomDataSource.h
< prev
next >
Wrap
Text File
|
1994-04-11
|
397b
|
23 lines
#import <objc/Object.h>
@interface RandomDataSource : Object
{
unsigned int rows, columns;
id rowList;
}
- (unsigned int) rowCount;
- (unsigned int) columnCount;
- setValueFor:index at:(unsigned int) aPosition from:aValue;
- getValueFor:index at:(unsigned int) aPosition into:aValue;
- setRows:(unsigned int) rowCount;
- setColumns:(unsigned int) columnCount;
- empty;
- loadData;
@end